home *** CD-ROM | disk | FTP | other *** search
/ Champak 114 / Vol 114.iso / games / pico_2.swf / scripts / DefineSprite_829 / frame_1 / DoAction.as
Encoding:
Text File  |  2010-08-12  |  308 b   |  18 lines

  1. danum = 1;
  2. lef.onPress = function()
  3. {
  4.    if(this._parent.danum > 1)
  5.    {
  6.       this._parent.danum -= 1;
  7.    }
  8.    this._parent._parent.updateFolds();
  9. };
  10. rig.onPress = function()
  11. {
  12.    if(this._parent.danum < 4)
  13.    {
  14.       this._parent.danum += 1;
  15.    }
  16.    this._parent._parent.updateFolds();
  17. };
  18.